home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / CHATZILLA.XPI / bin / chrome / chatzilla.jar / content / chatzilla / output-window.js < prev    next >
Encoding:
JavaScript  |  2004-12-19  |  12.2 KB  |  473 lines

  1. /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  2.  *
  3.  * ***** BEGIN LICENSE BLOCK *****
  4.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  5.  *
  6.  * The contents of this file are subject to the Mozilla Public License Version
  7.  * 1.1 (the "License"); you may not use this file except in compliance with
  8.  * the License. You may obtain a copy of the License at
  9.  * http://www.mozilla.org/MPL/
  10.  *
  11.  * Software distributed under the License is distributed on an "AS IS" basis,
  12.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  13.  * for the specific language governing rights and limitations under the
  14.  * License.
  15.  *
  16.  * The Original Code is ChatZilla.
  17.  *
  18.  * The Initial Developer of the Original Code is
  19.  * Netscape Communications Corporation.
  20.  * Portions created by the Initial Developer are Copyright (C) 1998
  21.  * the Initial Developer. All Rights Reserved.
  22.  *
  23.  * Contributor(s):
  24.  *   Robert Ginda, <rginda@netscape.com>, original author
  25.  *
  26.  * Alternatively, the contents of this file may be used under the terms of
  27.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  28.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  29.  * in which case the provisions of the GPL or the LGPL are applicable instead
  30.  * of those above. If you wish to allow use of your version of this file only
  31.  * under the terms of either the GPL or the LGPL, and not to allow others to
  32.  * use your version of this file under the terms of the MPL, indicate your
  33.  * decision by deleting the provisions above and replace them with the notice
  34.  * and other provisions required by the GPL or the LGPL. If you do not delete
  35.  * the provisions above, a recipient may use your version of this file under
  36.  * the terms of any one of the MPL, the GPL or the LGPL.
  37.  *
  38.  * ***** END LICENSE BLOCK ***** */
  39.  
  40. var initialized = false;
  41.  
  42. var view;
  43. var client;
  44. var mainWindow;
  45. var clickHandler;
  46.  
  47. var dd;
  48. var getMsg;
  49. var getObjectDetails;
  50.  
  51. var header = null;
  52. var headers = {
  53.     IRCClient: {
  54.         prefix: "cli-",
  55.         fields: ["container", "netcount", "version-container", "version",
  56.                  "connectcount"],
  57.         update: updateClient
  58.     },
  59.  
  60.     IRCNetwork: {
  61.         prefix: "net-",
  62.         fields: ["container", "url-anchor", "status", "lag"],
  63.         update: updateNetwork
  64.     },
  65.  
  66.     IRCChannel: {
  67.         prefix: "ch-",
  68.         fields: ["container", "url-anchor", "modestr", "usercount",
  69.                  "topicnodes", "topicinput"],
  70.         update: updateChannel
  71.     },
  72.  
  73.     IRCUser: {
  74.         prefix: "usr-",
  75.         fields: ["container", "url-anchor", "serverstr", "title",
  76.                  "descnodes"],
  77.         update: updateUser
  78.     },
  79.     
  80.     IRCDCCChat: {
  81.         prefix: "dcc-chat-",
  82.         fields: ["container", "url-anchor", "remotestr", "title"],
  83.         update: updateDCCChat
  84.     },
  85.     
  86.     IRCDCCFileTransfer: {
  87.         prefix: "dcc-file-",
  88.         fields: ["container", "file", "progress", "progressbar"],
  89.         update: updateDCCFile
  90.     }
  91. };
  92.  
  93. var initOutputWindow = stock_initOutputWindow;
  94.  
  95. function stock_initOutputWindow(newClient, newView, newClickHandler)
  96. {
  97.     function initHeader()
  98.     {
  99.         /* it's better if we wait a half a second before poking at these
  100.          * dom nodes. */
  101.         setHeaderState(view.prefs["displayHeader"]);
  102.         updateHeader();
  103.         var div = document.getElementById("messages-outer");
  104.         div.removeAttribute("hidden");
  105.         window.scrollTo(0, window.document.height);
  106.     };
  107.  
  108.     client = newClient;
  109.     view = newView;
  110.     clickHandler = newClickHandler;
  111.     mainWindow = client.mainWindow;
  112.     
  113.     client.messageManager.importBundle(client.defaultBundle, window);
  114.  
  115.     getMsg = mainWindow.getMsg;
  116.     getObjectDetails = mainWindow.getObjectDetails;
  117.     dd = mainWindow.dd;
  118.  
  119.     // Wheee... localize stuff!
  120.     //var nodes = document.getElementsByAttribute("localize", "*");
  121.     var nodes = document.getElementsByTagName("*");
  122.     for (var i = 0; i < nodes.length; i++)
  123.     {
  124.         if (nodes[i].hasAttribute("localize"))
  125.         {
  126.             var msg = nodes[i].getAttribute("localize");
  127.             msg = getMsg("msg." + msg);
  128.             nodes[i].appendChild(document.createTextNode(msg));
  129.         }
  130.     }
  131.  
  132.     changeCSS(view.prefs["motif.current"]);
  133.     
  134.     var output = document.getElementById("output");
  135.     output.appendChild(view.messages);
  136.  
  137.     if (view.TYPE in headers)
  138.     {
  139.         header = cacheNodes(headers[view.TYPE].prefix,
  140.                             headers[view.TYPE].fields);
  141.         header.update = headers[view.TYPE].update;
  142.     }
  143.  
  144.     var splash = document.getElementById("splash");
  145.     var name;
  146.     if ("unicodeName" in view)
  147.         name = view.unicodeName;
  148.     else
  149.         name = view.name;
  150.     splash.appendChild(document.createTextNode(name));
  151.  
  152.     setTimeout(initHeader, 500);
  153.  
  154.     initialized = true;
  155. }
  156.  
  157. function onTopicNodesClick(e)
  158. {
  159.     if (!clickHandler(e))
  160.     {
  161.         if (e.which != 1)
  162.             return;
  163.  
  164.         startTopicEdit();
  165.     }
  166.  
  167.     e.stopPropagation();
  168. }
  169.  
  170. function onTopicKeypress(e)
  171. {
  172.     switch (e.keyCode)
  173.     {
  174.         case 13: /* enter */
  175.             var topic = header["topicinput"].value;
  176.             topic = mainWindow.replaceColorCodes(topic);
  177.             view.setTopic(topic);
  178.             view.dispatch("focus-input");
  179.             break;
  180.             
  181.         case 27: /* esc */
  182.             view.dispatch("focus-input");
  183.             break;
  184.             
  185.         default:
  186.             client.mainWindow.onInputKeyPress(e);
  187.     }
  188. }
  189.  
  190. function startTopicEdit()
  191. {
  192.     var me = view.getUser(view.parent.me.unicodeName);
  193.     if (!me || (!view.mode.publicTopic && !me.isOp && !me.isHalfOp) ||
  194.         !header["topicinput"].hasAttribute("hidden"))
  195.     {
  196.         return;
  197.     }
  198.     
  199.     header["topicinput"].value = mainWindow.decodeColorCodes(view.topic);
  200.  
  201.     header["topicnodes"].setAttribute("hidden", "true")
  202.     header["topicinput"].removeAttribute("hidden");
  203.     header["topicinput"].focus();
  204.     header["topicinput"].selectionStart = 0;
  205. }
  206.  
  207. function cancelTopicEdit()
  208. {
  209.     if (!header["topicnodes"].hasAttribute("hidden"))
  210.         return;
  211.     
  212.     header["topicinput"].setAttribute("hidden", "true")
  213.     header["topicnodes"].removeAttribute("hidden");
  214. }
  215.  
  216. function cacheNodes(pfx, ary, nodes)
  217. {
  218.     if (!nodes)
  219.         nodes = new Object();
  220.  
  221.     for (var i = 0; i < ary.length; ++i)
  222.         nodes[ary[i]] = document.getElementById(pfx + ary[i]);
  223.  
  224.     return nodes;
  225. }
  226.  
  227. function changeCSS(url, id)
  228. {
  229.     if (!id)
  230.         id = "main-css";
  231.     
  232.     node = document.getElementById(id);
  233.  
  234.     if (!node)
  235.     {
  236.         node = document.createElement("link");
  237.         node.setAttribute("id", id);
  238.         node.setAttribute("rel", "stylesheet");
  239.         node.setAttribute("type", "text/css");
  240.         var head = document.getElementsByTagName("head")[0];
  241.         head.appendChild(node);
  242.     }
  243.     else
  244.     {
  245.         if (node.getAttribute("href") == url)
  246.             return;
  247.     }
  248.  
  249.     node.setAttribute("href", url);
  250.     window.scrollTo(0, window.document.height);
  251. }
  252.  
  253. function setText(field, text, checkCondition)
  254. {
  255.     if (!header[field].firstChild)
  256.         header[field].appendChild(document.createTextNode(""));
  257.  
  258.     if (typeof text != "string")
  259.     {
  260.         text = MSG_UNKNOWN;
  261.         if (checkCondition)
  262.             setAttribute(field, "condition", "red");
  263.     }
  264.     else if (checkCondition)
  265.     {
  266.         setAttribute(field, "condition", "green");
  267.     }
  268.                 
  269.     header[field].firstChild.data = text;
  270. }
  271.  
  272. function setAttribute(field, name, value)
  273. {
  274.     if (!value)
  275.         value = "true";
  276.  
  277.     header[field].setAttribute(name, value);
  278. }
  279.  
  280. function removeAttribute(field, name)
  281. {
  282.     header[field].removeAttribute(name);
  283. }
  284.  
  285. function hasAttribute(field, name)
  286. {
  287.     header[field].hasAttribute(name);
  288. }
  289.  
  290. function setHeaderState(state)
  291. {
  292.     if (header)
  293.     {
  294.         if (state)
  295.         {
  296.             updateHeader();
  297.             removeAttribute("container", "hidden");
  298.         }
  299.         else
  300.         {
  301.             setAttribute("container", "hidden");
  302.         }
  303.     }
  304. }
  305.  
  306. function updateHeader()
  307. {
  308.     document.title = view.getURL();
  309.     
  310.     if (!header || hasAttribute("container", "hidden"))
  311.         return;
  312.  
  313.     for (var id in header)
  314.     {
  315.         var value;
  316.  
  317.         if (id == "url-anchor")
  318.         {
  319.             value = view.getURL();
  320.             setAttribute("url-anchor", "href", value);
  321.             setText("url-anchor", value);
  322.         }
  323.         else if (id in view)
  324.         {
  325.             setText(id, view[id]);
  326.         }
  327.     }
  328.  
  329.     if (header.update)
  330.         header.update();
  331. }
  332.  
  333. function updateClient()
  334. {
  335.     var n = 0, c = 0;
  336.     for (name in client.networks)
  337.     {
  338.         ++n;
  339.         if (client.networks[name].isConnected())
  340.             ++c;
  341.     }
  342.  
  343.     setAttribute("version-container", "title", client.userAgent);
  344.     setAttribute("version-container", "condition", mainWindow.__cz_condition);
  345.     setText("version", mainWindow.__cz_version);
  346.     setText("netcount", String(n));
  347.     setText("connectcount", String(c));
  348. }
  349.  
  350. function updateNetwork()
  351. {
  352.     if (view.state == client.mainWindow.NET_CONNECTING)
  353.     {
  354.         setText("status", MSG_CONNECTING);
  355.         setAttribute("status","condition", "yellow");
  356.         removeAttribute("status", "title");
  357.         setText("lag", MSG_UNKNOWN);
  358.     }
  359.     else if (view.isConnected())
  360.     {
  361.         setText("status", MSG_CONNECTED);
  362.         setAttribute("status","condition", "green");
  363.         setAttribute("status", "title",
  364.                      getMsg(MSG_CONNECT_VIA, view.primServ.unicodeName));
  365.         if (view.primServ.lag != -1)
  366.             setText("lag", getMsg(MSG_FMT_SECONDS, view.primServ.lag));
  367.         else
  368.             setText("lag", MSG_UNKNOWN);
  369.         
  370.     }
  371.     else
  372.     {
  373.         setText("status", MSG_DISCONNECTED);
  374.         setAttribute("status","condition", "red");
  375.         removeAttribute("status", "title");
  376.         setText("lag", MSG_UNKNOWN);
  377.     }
  378. }
  379.  
  380. function updateChannel()
  381. {
  382.     header["topicnodes"].removeChild(header["topicnodes"].firstChild);
  383.  
  384.     if (view.active)
  385.     {
  386.         var str = view.mode.getModeStr();
  387.         if (!str)
  388.             str = MSG_NO_MODE;
  389.         setText("modestr", str);
  390.         setAttribute("modestr", "condition", "green");
  391.  
  392.         setText("usercount", getMsg(MSG_FMT_USERCOUNT,
  393.                                     [view.getUsersLength(), view.opCount,
  394.                                      view.halfopCount, view.voiceCount]));
  395.         setAttribute("usercount", "condition", "green");
  396.  
  397.         if (view.topic)
  398.         {
  399.             var nodes = client.munger.munge(view.topic, null,
  400.                                             getObjectDetails(view));
  401.             header["topicnodes"].appendChild(nodes);
  402.         }
  403.         else
  404.         {
  405.             setText("topicnodes", MSG_NONE);
  406.         }
  407.     }
  408.     else
  409.     {
  410.         setText("modestr", MSG_UNKNOWN);
  411.         setAttribute("modestr", "condition", "red");
  412.         setText("usercount", MSG_UNKNOWN);
  413.         setAttribute("usercount", "condition", "red");
  414.         setText("topicnodes", MSG_UNKNOWN);
  415.     }
  416.  
  417. }
  418.  
  419. function updateUser()
  420. {
  421.     var source;
  422.     if (view.name)
  423.         source = "<" + view.name + "@" + view.host + ">";
  424.     else
  425.         source = MSG_UNKNOWN;
  426.  
  427.     if (view.parent.isConnected)
  428.         setText("serverstr", view.connectionHost, true);
  429.     else
  430.         setText("serverstr", null, true);
  431.  
  432.     setText("title", getMsg(MSG_TITLE_USER, [view.unicodeName, source]));
  433.  
  434.     header["descnodes"].removeChild(header["descnodes"].firstChild);
  435.     if (typeof view.desc != "undefined")
  436.     {
  437.         var nodes = client.munger.munge(view.desc, null,
  438.                                         getObjectDetails(view));
  439.             header["descnodes"].appendChild(nodes);
  440.     }
  441.     else
  442.     {
  443.         setText("descnodes", "");
  444.     }
  445. }
  446.  
  447. function updateDCCChat()
  448. {
  449.     var source;
  450.     if (view.user)
  451.         source = view.user.displayName;
  452.     else
  453.         source = MSG_UNKNOWN;
  454.  
  455.     if (view.state == 3)
  456.         setText("remotestr", view.remoteIP + ":" + view.port, true);
  457.     else
  458.         setText("remotestr", null, true);
  459.  
  460.     setText("title", getMsg(MSG_TITLE_USER, [view.user.displayName, source]));
  461. }
  462.  
  463. function updateDCCFile()
  464. {
  465.     var pcent = Math.floor(100 * view.position / view.size);
  466.     
  467.     setText("file", view.filename);
  468.     setText("progress", getMsg(MSG_DCCFILE_PROGRESS,
  469.                                [pcent, view.position, view.size]));
  470.  
  471.     setAttribute("progressbar", "width", pcent + "%");
  472. }
  473.